.style{

	width: 80%;
	min-width: 460px; 
	padding:10px 10px 10px 10px;
	border: 3px solid #A0A0A0; 
	margin: auto; 
	background: #C0C0C0;
}
.style h1{
	font-size: 24px;
	font-family: Times New Roman;
	text-decoration: underline;
}
.style h3{
	font-size: 20px;
	font-family: Times New Roman;
	
}
/*couleur au passage du curseur*/
	nav .onglets :hover{
	color: red;

}
	
	nav .onglets{ /*logo et onglets*/
		display: flex;  /*aligne tous les éléments logo et onglets */
		flex-wrap:wrap;  /* sur mobile les éléments ne seront pas alignés mais empilés*/
		justify-content: center;

	}

	nav .onglets p{ /*intérieur des onglets*/
		
		font-size: 17px; /*dimensionne les textes en h1 du navigateur*/
		margin-right: 20px; /*espacer les onglets*/
		cursor: pointer red; /*le curseur se transforme en pointeur au survol de l'onglet*/
		border-radius: 30px;
		background: linear-gradient(#335BFF, #339CFF, #33DDFF); /*couleur dégradée*/
/*#13181d, #20212e, #341b47*/
		padding: 10px;

	}